.publishing-status {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    p {
        background: @secondaryBlue;
        height: 0;
        line-height: 30px;
        color: white;
        margin: 0;
        font-size: 13px;
        opacity: 0.9;
        text-align: center;
        transition: height 0.2s ease;
        overflow: hidden;
        &.on {
            height: 27px;
        }
        &.error {
            background: @red;
        }
    }
}
